Godot3で change_scene 時のトランジションaddonを導入して使う
インストール方法
addonsフォルダ配下を自分のプロジェクトにコピー
Transition.gd と FancyFade.gd をAutoLoadsに登録
https://gyazo.com/bcbc4aedd44b22c44cd54b1a42af4fb2
後はトランジションを入れたい箇所に、以下のようなメソッドを呼び出すとトランジションつきで change_scene してくれる
code:py
extends Node2D
onready var first_stage = preload("res://Stages/Stage1.tscn")
func _on_Button_button_up():
FancyFade.circle_out(first_stage.instance())
https://gyazo.com/f4dea4fae872b6773a3b00b572fb645d